fix: update cypher-rs to support claims via graph relationships#76
Merged
fix: update cypher-rs to support claims via graph relationships#76
Conversation
e87148d to
86f4cff
Compare
- Update cypher-rs to latest version with unified JSON-to-graph conversion - Fix API call: from_json_auto_as_root_with_label → from_json_with_label - Update SKILL.md to document relationship-based claims access With the new cypher-rs, array fields (claims, description_paragraphs) are converted to graph relationships rather than properties. Users must now access claims via: MATCH (p:Patent)-[:claims]->(c) RETURN c.number, c.text Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
86f4cff to
00c880a
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
from_json_auto_as_root_with_label→from_json_with_label--no-sandboxeven when browser_path is setProblem
Previously, claims data was not accessible via Cypher queries:
p.claimsreturned null because array fields were not properly handledSolution
With the new cypher-rs (PR #11 merged), array fields are converted to graph relationships:
(:Patent)-[:claims]->(:claims)MATCH (p:Patent)-[:claims]->(c) RETURN c.number, c.textAlso fixed a bug where
--no-sandboxwasn't added when browser_path was configured in devcontainer.Test plan
🤖 Generated with Claude Code